The css tree and the widget tree are not in sync, so we need
to explicitly set the parent of the css node before inserting
the widget, or else we end up with critical warnings and a
non-working popover.
This can be seen in the print dialog, when moving the focus
to the printer list.
return;
tree_view->search_popover = gtk_popover_new ();
+ gtk_css_node_insert_after (gtk_widget_get_css_node (GTK_WIDGET (tree_view)),
+ gtk_widget_get_css_node (tree_view->search_popover),
+ tree_view->header_node);
gtk_widget_set_parent (tree_view->search_popover, GTK_WIDGET (tree_view));
gtk_popover_set_autohide (GTK_POPOVER (tree_view->search_popover), FALSE);